Note that the icons used in this example are provided in the ws sub-directory.
icodir←(2 ⎕NQ'.' 'GetEnvironment' 'Dyalog'),'\ws\'
'F'⎕WC'Form' 'TabControl: Align Bottom'('Size' 25 50) 'F.TC'⎕WC'TabControl'('Align' 'Bottom') 'F.TC.IL'⎕WC'ImageList' 'F.TC.IL.'⎕WC'Icon'(icodir,'aplicon.ico') 'F.TC.IL.'⎕WC'Icon'(icodir,'funicon.ico') 'F.TC.IL.'⎕WC'Icon'(icodir,'editicon.ico') 'F.TC'⎕WS'ImageListObj' 'F.TC.IL' 'F.TC.T1'⎕WC'TabButton' 'One'('ImageIndex' 1) 'F.TC.T2'⎕WC'TabButton' 'Two'('ImageIndex' 2) 'F.TC.T3'⎕WC'TabButton' 'Three'('ImageIndex' 3) 'F.TC.S1'⎕WC'SubForm'('TabObj' 'F.TC.T1') 'F.TC.S2'⎕WC'SubForm'('TabObj' 'F.TC.T2') 'F.TC.S3'⎕WC'SubForm'('TabObj' 'F.TC.T3')